home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 1 / Amiga Tools.iso / egs-tools / egs_dev-disk / egsincludes / egb / gbcolorpot.h next >
Encoding:
C/C++ Source or Header  |  1994-06-06  |  1.3 KB  |  50 lines

  1. #ifndef EGS_EGB_GBCOLORPOT_H
  2. #define EGS_EGB_GBCOLORPOT_H
  3.  
  4. /***************************************************************************\
  5. *
  6. *  $
  7. *  $ FILE     : gbColorPot.h
  8. *  $ VERSION  : 1
  9. *  $ REVISION : 4
  10. *  $ DATE     : 08-Dec-93 12:50
  11. *  $
  12. *  $ Author   : mvk
  13. *  $
  14. *
  15. *****************************************************************************
  16. *                                                                           *
  17. * (c) Copyright 1990/93 VIONA Development                                   *
  18. *     All Rights Reserved                                                   *
  19. *                                                                           *
  20. \***************************************************************************/
  21.  
  22. #ifndef         EXEC_TYPES_H
  23. #include        <exec/types.h>
  24. #endif
  25. #ifndef         EGS_EGSINTUI_H
  26. #include        <egs/egsintui.h>
  27. #endif
  28. #ifndef         EGS_EGSGADBOX_H
  29. #include        <egs/egsgadbox.h>
  30. #endif
  31.  
  32. #define EGB_ColorKEY "COLR"
  33.  
  34. struct  EGB_ColorPotGadget {
  35.               struct EI_MasterGadget Master;
  36.               EI_DropGadPtr          Drop;
  37.               EI_GadgetPtr           Drag;
  38.               IG_IntuiGfxPtr         Draw;
  39.               E_CLU                  Color;
  40.      WORD                   DragSize;
  41.      WORD                   Pad;
  42. };
  43.  
  44. typedef struct EGB_ColorPotGadget *EGB_ColorPotGadPtr;
  45.  
  46. #endif /* EGS_EGB_GBCOLORPOT_H */
  47.  
  48.  
  49.  
  50.